home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
001
/
icpr20c.arc
/
STEP404.CMD
< prev
next >
Wrap
OS/2 REXX Batch file
|
1987-07-09
|
5KB
|
184 lines
; This file was created using MAKESTEP from the package ICPR20
; designed by Wayne Wolf. ICPR20 Copyright 1987
; You may modify this file in any way you wish but since the make
; files utilize the existing cmd files I discourage it. If you have
; comments or useful modifications please contact me, either at
; unix: ww@ufcsg.ufl.edu or bbs: PC-EXCHANGE at 404-977-6686.
Page1:
Clear
Message "Menu of Bulletin Boards for the 404 area."
Message "██████████████████████████████████████████████████████████████████████████████"
Locate 22,15
Message " "
Locate 0,45
Message "Mode:"
Locate 0,51
Find S7 "H"
IF Found
Message "Hayes"
ELSE
Message "Racal"
ENDIF
Locate 0,60
Message "Redial:"
Locate 0,68
Find S8 "A"
IF Found
Message "Active"
ELSE
Message "Inactive"
ENDIF
Locate 2,0
Message " 1 --> C/Turbo Exchange (263-1151)"
Message " 2 --> AESC (381-1947)"
Message " 3 --> Atlanta PCUG (433-0062)"
Message " 4 --> Insight (455-4707)"
Message " 5 --> Georgia BBS (457-6815)"
Message " 6 --> The Right Place (476-2607)"
Message " 7 --> Pc World (565-7775)"
Message " 8 --> Nochange #1 (641-8270)"
Message " 9 --> Pc-Plus (762-0923)"
Message "10 --> Ultimate Solutions (949-3549)"
Message "11 --> AAPUG (969-0618)"
Message "12 --> Pc-Exchange (977-6686)"
Message "13 --> Invisible BBS (993-5310)"
Message "D --> Disconnect and exit to area code dialer S --> Switch modes"
Message "E --> Execute ICPR20 from within Procomm R --> Toggle Redial mode "
Locate 22,0
Message "Your Choice -->"
Goto Retype1
;
Retype1:
Locate 22,15
Get S3
Switch S3
Case "E"
EndSwitch
Execute "Make.cmd"
EndCase
Case "R"
EndSwitch
Goto Activate
EndCase
Case "S"
EndSwitch
Goto Switch
EndCase
Case "M"
Clear
Message "Manual dial for area "
Locate 0,21
Message S2
Message "What number do you wish to dial --> "
Locate 1,36
Get S6
Assign S5 "Manual dialing."
Execute "Dial"
EndCase
Case "D"
Execute "Discnect"
EndCase
Case "1"
Assign S5 "Dialing C/Turbo Exchange at 263-1151."
Assign S6 "2631151"
Execute "Dial"
EndCase
Case "2"
Assign S5 "Dialing AESC at 381-1947."
Assign S6 "3811947"
Execute "Dial"
EndCase
Case "3"
Assign S5 "Dialing Atlanta PCUG at 433-0062."
Assign S6 "4330062"
Execute "Dial"
EndCase
Case "4"
Assign S5 "Dialing Insight at 455-4707."
Assign S6 "4554707"
Execute "Dial"
EndCase
Case "5"
Assign S5 "Dialing Georgia BBS at 457-6815."
Assign S6 "4576815"
Execute "Dial"
EndCase
Case "6"
Assign S5 "Dialing The Right Place at 476-2607."
Assign S6 "4762607"
Execute "Dial"
EndCase
Case "7"
Assign S5 "Dialing Pc World at 565-7775."
Assign S6 "5657775"
Execute "Dial"
EndCase
Case "8"
Assign S5 "Dialing Nochange #1 at 641-8270."
Assign S6 "6418270"
Execute "Dial"
EndCase
Case "9"
Assign S5 "Dialing Pc-Plus at 762-0923."
Assign S6 "7620923"
Execute "Dial"
EndCase
Case "10"
Assign S5 "Dialing Ultimate Solutions at 949-3549."
Assign S6 "9493549"
Execute "Dial"
EndCase
Case "11"
Assign S5 "Dialing AAPUG at 969-0618."
Assign S6 "9690618"
Execute "Dial"
EndCase
Case "12"
Assign S5 "Dialing Pc-Exchange at 977-6686."
Assign S6 "9776686"
Execute "Dial"
EndCase
Case "13"
Assign S5 "Dialing Invisible BBS at 993-5310."
Assign S6 "9935310"
Execute "Dial"
EndCase
Default
Message " "
Message "Invalid choice, please retype"
Locate 22,15
Message " "
Goto Retype1
EndCase
EndSwitch
;
Switch:
Find S7 "R"
IF Found
Tran "I!"
Pause 2
Tran "ATZ!"
Assign S7 "H"
Rflush
ELSE
Tran "ATZ I!"
Pause 2
Tran "!"
Assign S7 "R"
Rflush
ENDIF
Pause 3
Rflush
Goto Page1
;
Activate:
Find S8 "A"
IF Found
Assign S8 "I"
ELSE
Assign S8 "A"
ENDIF
Goto Page1
;
Exit